home *** CD-ROM | disk | FTP | other *** search
/ The Guru Press Kit / The Guru Press Kit.iso / pc / theguru.dxr / 00024_exittimed.ls < prev    next >
Encoding:
Text File  |  2002-12-17  |  214 b   |  16 lines

  1. property ms
  2.  
  3. on beginSprite me
  4.   ms = the milliSeconds
  5. end
  6.  
  7. on exitFrame me
  8.   secs = (the milliSeconds - ms) / 1000
  9.   if secs > 4 then
  10.     ms = the milliSeconds
  11.     secs = 0
  12.     quit()
  13.   end if
  14.   go(the frame)
  15. end
  16.